home *** CD-ROM | disk | FTP | other *** search
- ; PassWord 3.1 installation script
- ; $VER: 1.0 (09.01.95) by Michael Griggs
-
-
- (set #askoptions-help
- "You may select one, all or none of the choices specified."
- )
-
-
- (set exedest
- (askdir
- (prompt "Where do you wish to install FindItGui ?")
- (help @askdir-help)
- (default "sys:utilities")
- )
- )
-
- (copyfiles
- (prompt "Copying FindItGui...")
- (source "FindItGui")
- (infos)
- (dest exedest)
- )
-
- (set installdoc
- (askoptions
-
- (prompt "Which documentation would you like installed?")
- (help #askoptions-help)
-
- (choices
-
- "AmigaGuide"
- "Standard Text"
-
- )
- )
- )
-
-
- (if (in installdoc 0)
- (copyfiles
- (prompt "Copying Documentation...")
- (source "FindItGui.Guide")
- (infos)
- (dest exedest)
- ))
-
- (if (in installdoc 1)
- (copyfiles
- (prompt "Copying Documentation...")
- (source "FindItGui.Doc")
- (infos)
- (dest exedest)
- ))
-
-
- (copylib
- (prompt "Copying bgui.library to LIBS:")
- (source "libs/bgui.library")
- (dest "LIBS:")
- (confirm)
- (help @copylib-help)
- )
-
- (set @default-dest exedest)
- (message "FindItGui is now ready to go!")
- (message "Please read the documentation for more information")
-
-
-